home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 85 / CD Temático 40 Febrero 2004.iso / DOS / ntfs / dos / makefile < prev    next >
Encoding:
Makefile  |  2001-02-15  |  385 b   |  20 lines

  1. # Makefile for readdisk by Christophe GRENIER <grenier@esiea.fr>
  2.  
  3. OPTS=-Wall -O2 -DLINUX -s
  4. CC=gcc
  5. RM=rm
  6.  
  7. all:    readdisk.o hdaccess.o fnctdsk.o
  8.  
  9. readdisk.o: readdisk.h readdisk.c km.h
  10.     $(CC) $(OPTS) -c readdisk.c
  11.  
  12. fnctdsk.o: fnctdsk.c fnctdsk.h hdaccess.h
  13.     $(CC) $(OPTS) -c fnctdsk.c
  14.  
  15. hdaccess.o: hdaccess.c hdaccess.h
  16.     $(CC) $(OPTS) -c hdaccess.c
  17.  
  18. clean:
  19.     $(RM) *.o
  20.